home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
strcpy.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-06-22
|
241b
|
18 lines
/*
strcpy.C
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
*/
#define INCL_STRCPY
char *strcpy (char *dest, const char *src)
{
char *temp = dest;
while (*temp++ = *src++)
;
return dest;
}